Conversation
|
Note Gemini is unable to generate a review for this pull request due to the file types involved not being currently supported. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #135 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 37 37
Lines 1063 1063
Branches 211 211
=========================================
Hits 1063 1063 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
💡 Codex Review
mockhttp/.github/workflows/deploy-site.yaml
Lines 77 to 78 in 26d8853
In .github/workflows/deploy-site.yaml, the new deploy job runs docker build without any prior pnpm install, but Dockerfile line 8 still does COPY --chown=node:node node_modules/ ./node_modules/. On a fresh GitHub runner (the normal case for this separate job), node_modules/ is absent, so the deploy workflow will fail during image build for every release/manual deploy run. Either install dependencies in deploy (as before) or include node_modules in the transferred artifacts.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Please check if the PR fulfills these requirements
What kind of change does this PR introduce? (Bug fix, feature, docs update, ...)
chore: updating all github actions